home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "CrackersConvert KeyGen"
- ClientHeight = 2055
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 3135
- Icon = "Form1.frx":0000
- LinkTopic = "Form1"
- ScaleHeight = 2055
- ScaleWidth = 3135
- StartUpPosition = 3 'Windows Default
- Begin VB.Frame Frame2
- Height = 615
- Left = 0
- TabIndex = 5
- Top = 1440
- Width = 3135
- Begin VB.CommandButton Command3
- Caption = "&Exit"
- Height = 255
- Left = 2160
- TabIndex = 8
- Top = 240
- Width = 855
- End
- Begin VB.CommandButton Command2
- Caption = "&About"
- Height = 255
- Left = 1080
- TabIndex = 7
- Top = 240
- Width = 975
- End
- Begin VB.CommandButton Command1
- Caption = "&Generate"
- Height = 255
- Left = 120
- TabIndex = 6
- Top = 240
- Width = 855
- End
- End
- Begin VB.Frame Frame1
- Height = 1335
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 3135
- Begin VB.TextBox Text2
- Height = 285
- Left = 120
- TabIndex = 2
- Top = 960
- Width = 2895
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 120
- TabIndex = 1
- Top = 360
- Width = 2895
- End
- Begin VB.Label Label2
- Caption = "Registration Code"
- Height = 255
- Left = 840
- TabIndex = 4
- Top = 720
- Width = 1335
- End
- Begin VB.Label Label1
- Caption = "User Name"
- Height = 255
- Left = 1080
- TabIndex = 3
- Top = 120
- Width = 855
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Dim RegString, RegConv, RegCode, RegMult
- If Len(Text1.Text) > 4 Then
- RegString = Text1.Text
- RegConv = Mid(RegString, 1, 5)
- RegConv = Str(Asc(RegConv))
- Else
- MsgBox ("User Name Must Be At Least Five Characters Long")
- GoTo Quit
- End If
- RegMult = RegConv * 20
- RegCode = "REG-" & RegMult & "-CODE"
- Text2.Text = RegCode
- Quit:
- End Sub
- Private Sub Command2_Click()
- frmAbout.Show
- End Sub
- Private Sub Command3_Click()
- End
- End Sub
- Private Sub Form_Load()
- Left = (Screen.Width - Width) \ 2
- Top = (Screen.Height - Height) \ 2
- End Sub
-